home *** CD-ROM | disk | FTP | other *** search
/ Hidden Truth / Hidden Truth.iso / amiga / prefs / akjfifprefs.doc < prev    next >
Encoding:
Text File  |  1996-10-20  |  3.6 KB  |  113 lines

  1.  
  2.   akJFIFPrefs.doc
  3.  
  4.   ⌐ 1996 by Andreas R. Kleinert.
  5.   FREEWARE. All rights reserved.
  6.  
  7.   Version      : 43.5
  8.   Release Date : 20.10.1996
  9.  
  10.   Description
  11.   ~~~~~~~~~~~
  12.   akJFIFPrefs is the Preferences Program for akJFIF.datatype.
  13.   GUI has been created with Designer 1.54 by Ian O'Connor.
  14.   Icon by Detlef Winkler (same as SVPrefs.info)
  15.  
  16.   You can do the following, settings, which will be written
  17.   to ENV: and/or ENVARC: into a settings file called
  18.   "Datatypes/akJFIF.prefs":
  19.  
  20. 1) DECODE_METHOD=(FAST_INTEGER|SLOW_INTEGER|FLOATING_POINT)
  21. 2) DITHERMODE=(NO_DITHERING|DITHER_FLOYD-STEINBERG|DITHER_ORDERED|
  22.                HAM_OUTPUT)
  23. 3) V43MODE=(256|24BIT)
  24. 4) HAM_MODE=(HAM6|HAM8)
  25. 5) COLOR_QUANTIZING=(SLOW|FAST)
  26. 6) UPSAMPLING=(ON|OFF)
  27. 7) PROGRESSBAR=(ON|OFF)
  28.  
  29.   That's mostly self-explaining, but as an example,
  30.   here are the default settings and a short explanation:
  31.  
  32. DECODE_METHOD=FAST_INTEGER
  33. DITHERMODE=DITHER_ORDERED
  34. V43_MODE=24BIT
  35. HAM_MODE=HAM6
  36. COLOR_QUANTIZING=FAST
  37. UPSAMPLING=OFF
  38. PROGRESSBAR=ON
  39.  
  40.   Please note, that it does not suffice to simply specify the prefered
  41.   options. Some also do react as switches. Here are some examples how
  42.   to manage specific configurations:
  43.  
  44.    HAM Output (V40/V43):      DECODE_METHOD=FAST_INTEGER       *
  45.                               DITHERMODE=HAM_OUTPUT
  46.                               V43_MODE=256
  47.                               HAM_MODE=HAM8                    *
  48.                               UPSAMPLING=OFF                   *
  49.  
  50.    Dithered Output (V40/V43): DECODE_METHOD=FAST_INTEGER       *
  51.                               DITHERMODE=DITHER_ORDERED        *1
  52.                               V43_MODE=256
  53.                               COLOR_QUANTIZING=FAST            *
  54.                               UPSAMPLING=OFF                   *
  55.  
  56.    256 Colors (V40/V43):      DECODE_METHOD=FAST_INTEGER       *
  57.                               DITHERMODE=NO_DITHERING
  58.                               V43_MODE=256
  59.                               COLOR_QUANTIZING=FAST            *
  60.                               UPSAMPLING=OFF                   *
  61.  
  62.    24 Bit (V43):              DECODE_METHOD=FAST_INTEGER       *
  63.                               DITHERMODE=NO_DITHERING
  64.                               V43_MODE=24BIT
  65.                               UPSAMPLING=OFF                   *
  66.  
  67.        *   may be changed
  68.        *1  maybe changed to: DITHER_FLOYD-STEINBERG
  69.  
  70.  
  71.    General Explanation of Options
  72.    ==============================
  73.  
  74. 1) DECODE_METHOD
  75. ----------------
  76.   SLOW_INTEGER:   slot, but accurate integer algorithm
  77.   FAST_INTEGER:   faster, but less accurate integer algorithm
  78.   FLOATING_POINT: floting point algorithm
  79.  
  80. 2) DITHERMODE
  81. -------------
  82.   NO_DITHERING:           no dithering, best pen selection
  83.   DITHER_FLOYD-STEINBERG: slow, hight quality, floyd-steinberg dithering
  84.   DITHER_ORDERED:         ordered dithering on fixed palette
  85.   HAM_OUTPUT:             generate HM output from 24 Bit data
  86.  
  87. 3) V43_MODE (only with "NO_DITHERING")
  88. -----------
  89.   256:   enables dithered 256 color output for V43 picture.datatype
  90.   24BIT: does raw 24 Bit output with V43 picture.datatype
  91.  
  92. 4) HAM_MODE (only with "HAM_OUTPUT")
  93. -----------
  94.   HAM6: generates HAM6 output
  95.   HAM8: generates HAM8 output
  96.  
  97. 5) COLOR_QUANTIZING (not with "DITHER_ORDERED", "HAM_OUTPUT" or 24 Bit)
  98. -------------------
  99.   FAST: high speed color quantization
  100.   SLOW: high quality color quantization
  101.  
  102. 6) UPSAMPLING
  103. -------------
  104.   ON:  do careful upsampling of chroma components
  105.   OFF: do faster, but sloppier upsampling of chrom components
  106.        (often very small visual impact)
  107.  
  108. 7) PROGRESSBAR
  109. --------------
  110.   ON:  pop up percentage display
  111.   OFF: do not pop up percentage display
  112.  
  113.